From effed864104ad9bee3f72a2a7d9fb2146b8bf122 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= Date: Fri, 17 Aug 2018 13:59:35 +0200 Subject: [PATCH] libxc: copy back the result of XEN_DOMCTL_createdomain MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes the ARM guest boot breakage introduced by 54ed251dc7. Signed-off-by: Roger Pau Monné Reviewed-by: Andrew Cooper Acked-by: Wei Liu --- tools/libxc/xc_domain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c index 2bc695c597..f5dfadd700 100644 --- a/tools/libxc/xc_domain.c +++ b/tools/libxc/xc_domain.c @@ -40,6 +40,7 @@ int xc_domain_create(xc_interface *xch, uint32_t *pdomid, return err; *pdomid = (uint16_t)domctl.domain; + *config = domctl.u.createdomain; return 0; } -- 2.30.2